os.file.pfd (field)

28 uses

	os (current package)
		dir_unix.go#L70: 			d.nbuf, errno = f.pfd.ReadDirent(*d.buf)
		file_posix.go#L29: 	n, err = f.pfd.Read(b)
		file_posix.go#L38: 	n, err = f.pfd.Pread(b, off)
		file_posix.go#L46: 	n, err = f.pfd.Write(b)
		file_posix.go#L54: 	n, err = f.pfd.Pwrite(b, off)
		file_posix.go#L92: 	if e := f.pfd.Fchmod(syscallMode(mode)); e != nil {
		file_posix.go#L140: 	if e := f.pfd.Fchown(uid, gid); e != nil {
		file_posix.go#L153: 	if e := f.pfd.Ftruncate(size); e != nil {
		file_posix.go#L166: 	if e := f.pfd.Fsync(); e != nil {
		file_posix.go#L203: 	if e := f.pfd.Fchdir(); e != nil {
		file_posix.go#L214: 	return f.pfd.SetDeadline(t)
		file_posix.go#L222: 	return f.pfd.SetReadDeadline(t)
		file_posix.go#L230: 	return f.pfd.SetWriteDeadline(t)
		file_unix.go#L59: 	pfd         poll.FD
		file_unix.go#L90: 		f.pfd.SetBlocking()
		file_unix.go#L93: 	return uintptr(f.pfd.Sysfd)
		file_unix.go#L169: 		pfd: poll.FD{
		file_unix.go#L233: 	if pollErr := f.pfd.Init("file", pollable); pollErr != nil && clearNonBlock {
		file_unix.go#L302: 	f.pfd.SysFile = s
		file_unix.go#L315: 	if e := file.pfd.Close(); e != nil {
		file_unix.go#L338: 	ret, err = f.pfd.Seek(offset, whence)
		rawconn.go#L22: 	err := c.file.pfd.RawControl(f)
		rawconn.go#L31: 	err := c.file.pfd.RawRead(f)
		rawconn.go#L40: 	err := c.file.pfd.RawWrite(f)
		readfrom_linux.go#L57: 	written, handled, syscallName, err = pollSplice(&f.pfd, pfd, remain)
		readfrom_linux.go#L104: 	written, handled, err = pollCopyFileRange(&f.pfd, &src.pfd, remain)
		stat_unix.go#L20: 	err := f.pfd.Fstat(&fs.sys)